home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / OpenGL 1.0 SDK / Source / Libraries / glut / glut_warp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  428 b   |  22 lines  |  [TEXT/CWIE]

  1.  
  2. /* Copyright (c) Mark J. Kilgard, 1996. */
  3.  
  4. /* This program is freely distributable without licensing fees
  5.    and is provided without guarantee or warrantee expressed or
  6.    implied. This program is -not- in the public domain. */
  7.  
  8. #include <stdlib.h>
  9. #include <stdarg.h>
  10. #include <stdio.h>
  11.  
  12. #include <CursorDevices.h>
  13.  
  14. #include "glut.h"
  15. #include "glutint.h"
  16.  
  17. void glutWarpPointer(int x, int y)
  18. {
  19.     //CursorDeviceMoveTo(x, y);
  20. }
  21.  
  22.